1. Replace customerJourneyCommon.js and oceanaCoreData.js with customerJourney.js
2. Replace contextStoreUI.js with customerJourneyUI.js

The expected flow is as follows:
1. customerJourney.requestCustomerId("email", yourEmailHere);
2. customerJourney.setTopic("My_Example_Topic");
3. customerJourney.addRoutingAttribute("Language", "German", 1); // the third parameter is optional. You can repeat this line as often as you like.
4. customerJourney.addNonRoutingData("foo", [1,2,3,4]); // add non-routing data
4. customerJourney.setup(); // this will set up the context
5. customerJourney.addAttribute("Service.Sales", 1); // this is the old version, kept for backwards compatibility
6. customerJourney.updateSchema(); // actually update the schema.
